Add an OS_LINUX conditional.
authorMatthias Clasen <mclasen@redhat.com>
Thu, 13 Jan 2005 15:19:27 +0000 (15:19 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Thu, 13 Jan 2005 15:19:27 +0000 (15:19 +0000)
2005-01-13  Matthias Clasen  <mclasen@redhat.com>

* configure.in: Add an OS_LINUX conditional.

* gdk/Makefile.am (TESTS):
* gdk-pixbuf/Makefile.am (TESTS):
* gtk/Makefile.am (TESTS): Only run abicheck on Linux.  (#163917,
Roger Leigh)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-8
configure.in
gdk-pixbuf/Makefile.am
gdk/Makefile.am
gtk/Makefile.am

index aed2d8cbfbd8d03a1d619f5a90a0871a94b6590e..f78dc16cb2a88e664c7d4b9b3eac8e8b770ece32 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2005-01-13  Matthias Clasen  <mclasen@redhat.com>
+
+       * configure.in: Add an OS_LINUX conditional.
+
+       * gdk/Makefile.am (TESTS):
+       * gdk-pixbuf/Makefile.am (TESTS):
+       * gtk/Makefile.am (TESTS): Only run abicheck on Linux.  (#163917,
+       Roger Leigh)
+
 2005-01-13  Matthias Clasen <mclasen@redhat.com>
 
        * gtk/gtktreeview.c: (gtk_tree_view_class_init),
index aed2d8cbfbd8d03a1d619f5a90a0871a94b6590e..f78dc16cb2a88e664c7d4b9b3eac8e8b770ece32 100644 (file)
@@ -1,3 +1,12 @@
+2005-01-13  Matthias Clasen  <mclasen@redhat.com>
+
+       * configure.in: Add an OS_LINUX conditional.
+
+       * gdk/Makefile.am (TESTS):
+       * gdk-pixbuf/Makefile.am (TESTS):
+       * gtk/Makefile.am (TESTS): Only run abicheck on Linux.  (#163917,
+       Roger Leigh)
+
 2005-01-13  Matthias Clasen <mclasen@redhat.com>
 
        * gtk/gtktreeview.c: (gtk_tree_view_class_init),
index aed2d8cbfbd8d03a1d619f5a90a0871a94b6590e..f78dc16cb2a88e664c7d4b9b3eac8e8b770ece32 100644 (file)
@@ -1,3 +1,12 @@
+2005-01-13  Matthias Clasen  <mclasen@redhat.com>
+
+       * configure.in: Add an OS_LINUX conditional.
+
+       * gdk/Makefile.am (TESTS):
+       * gdk-pixbuf/Makefile.am (TESTS):
+       * gtk/Makefile.am (TESTS): Only run abicheck on Linux.  (#163917,
+       Roger Leigh)
+
 2005-01-13  Matthias Clasen <mclasen@redhat.com>
 
        * gtk/gtktreeview.c: (gtk_tree_view_class_init),
index dbea88602c39ee9f08a9cd18a2d4e35f265701a5..6de77975b1bf5e11de67cebaa86e7207747196c4 100644 (file)
@@ -123,6 +123,11 @@ case "$host" in
 esac
 AC_MSG_RESULT([$os_win32])
 
+case $host in
+  *-*-linux*)
+    os_linux=yes
+    ;;
+esac
 dnl Initialize libtool
 AC_PROG_CC
 AM_DISABLE_STATIC
@@ -162,6 +167,7 @@ AM_CONDITIONAL(PLATFORM_WIN32, test "$platform_win32" = "yes")
 
 AM_CONDITIONAL(OS_WIN32, test "$os_win32" = "yes")
 AM_CONDITIONAL(OS_UNIX, test "$os_win32" != "yes")
+AM_CONDITIONAL(OS_LINUX, test "$os_linux" = "yes")
 
 if test "$os_win32" = "yes"; then
   AC_CHECK_PROG(ms_librarian, lib.exe, yes, no)
index 20a151ab37344a6031df34ef299f05025797fda6..02150dc90ef9b9ddf459694d6f80fdb253ebb5fb 100644 (file)
@@ -52,7 +52,7 @@ gdk_pixbuf.def: gdk-pixbuf.symbols
 gdk-pixbuf-alias.h: gdk-pixbuf.symbols
         $(PERL) $(srcdir)/makegdkpixbufalias.pl < $(srcdir)/gdk-pixbuf.symbols > gdk-pixbuf-alias.h
 
-if OS_UNIX
+if OS_LINUX
 TESTS = abicheck.sh
 endif
 
index acd669f2049a168b644236b551b47a1fc74b9ec0..e6e7898df4bf1392aa30d804b4bf547fedc68e1c 100644 (file)
@@ -182,7 +182,7 @@ gdk.def: gdk.symbols
 gdkalias.h: gdk.symbols
         $(PERL) $(srcdir)/makegdkalias.pl < $(srcdir)/gdk.symbols > gdkalias.h
 
-if OS_UNIX
+if OS_LINUX
 TESTS = abicheck.sh
 endif
 
index e3cfc29b15507f3f0fed8bfa8766f416098421c2..4904894ac5b3f44ea88f83e49a8552ee358772ba 100644 (file)
@@ -80,7 +80,7 @@ gtk.def: gtk.symbols
 gtkalias.h: gtk.symbols
          $(PERL) $(srcdir)/makegtkalias.pl < $(srcdir)/gtk.symbols > gtkalias.h
 
-if OS_UNIX
+if OS_LINUX
 TESTS = abicheck.sh
 endif